home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / dsp / dspgroup / 00index.arc / DISKIFO.BAT < prev    next >
Encoding:
DOS Batch File  |  1988-07-26  |  499 b   |  11 lines

  1. rem
  2. rem  This file creates a text file of information about a disk in drive a:.
  3. rem  First a directory of the disk is stored into a file, then if any arc
  4. rem  files are on the disk the contents of the arc file are appended to
  5. rem  the information file.  The only parameter required is the name for the
  6. rem  file to be created (no ext the .TXT will be added). This name should
  7. rem  match the name of the disk if possible.
  8. rem
  9. dir a: >%1.TXT
  10. for %%f in ( a:*.arc ) do pkxarc -v %%f >>%1.txt
  11.